home *** CD-ROM | disk | FTP | other *** search
/ Programming Microsoft Visual Basic .NET / Programming Microsoft Visual Basic .NET (Microsoft Press)(X08-78517)(2002).bin / setup / vbnet / 22 xml and adonet / xmldemo / bin / invoices.xml < prev    next >
Encoding:
Text File  |  2001-12-04  |  1.7 KB  |  68 lines

  1. <Invoices>
  2.   <Invoice id='1' date='3/2/2002'>
  3.     <Number>1</Number>
  4.     <ShipDate>11/4/1999</ShipDate>
  5.     <Customer>Microsoft Corp.</Customer>
  6.     <InvoiceLines>
  7.       <InvoiceLine>
  8.         <Qty>10</Qty>
  9.         <Description>Notebook</Description>
  10.         <UnitPrice>2000</UnitPrice>
  11.       </InvoiceLine>
  12.       <InvoiceLine>
  13.         <Qty>12</Qty>
  14.         <Description>Monitor</Description>
  15.         <UnitPrice>320</UnitPrice>
  16.       </InvoiceLine>
  17.       <InvoiceLine>
  18.         <Qty>22</Qty>
  19.         <Description>Modem</Description>
  20.         <UnitPrice>115</UnitPrice>
  21.       </InvoiceLine>
  22.     </InvoiceLines>
  23.   </Invoice>
  24.  
  25.   <Invoice>
  26.     <Number>2</Number>
  27.     <ShipDate>11/18/1999</ShipDate>
  28.     <Customer>Gruppo Editoriale Infomedia</Customer>
  29.     <InvoiceLines>
  30.       <InvoiceLine>
  31.         <Qty>8</Qty>
  32.         <Description>CD-ROM Driver</Description>
  33.         <UnitPrice>210</UnitPrice>
  34.       </InvoiceLine>
  35.       <InvoiceLine>
  36.         <Qty>3</Qty>
  37.         <Description>Network Server</Description>
  38.         <UnitPrice>4500</UnitPrice>
  39.       </InvoiceLine>
  40.       <InvoiceLine>
  41.         <Qty>12</Qty>
  42.         <Description>Notebook</Description>
  43.         <UnitPrice>2100</UnitPrice>
  44.       </InvoiceLine>
  45.     </InvoiceLines>
  46.   </Invoice>
  47.  
  48.   <Invoice>
  49.     <Number>3</Number>
  50.     <ShipDate>11/23/1999</ShipDate>
  51.     <Customer>VB2TheMax Team</Customer>
  52.     <InvoiceLines>
  53.       <InvoiceLine>
  54.         <Qty>18</Qty>
  55.         <Description>8GB Hard Disk</Description>
  56.         <UnitPrice>350</UnitPrice>
  57.       </InvoiceLine>
  58.       <InvoiceLine>
  59.         <Qty>12</Qty>
  60.         <Description>Printers</Description>
  61.         <UnitPrice>850</UnitPrice>
  62.       </InvoiceLine>
  63.     </InvoiceLines>
  64.   </Invoice>
  65.  
  66. </Invoices>
  67.  
  68.